home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NASA Climatology Interdisciplinary Data Collection
/
NASA Climatology Interdisciplinary Data Collection - Disc 4.iso
/
software
/
grads
/
lib
/
ex2.gui
< prev
next >
Wrap
Text File
|
1998-04-23
|
591b
|
19 lines
#
# Example 2: Making a menu
#
MakeMenu ( file, "File" )
MakeMenuItem( open, file, "Open", Load, "open")
MakeMenuItem(sdfopen, file, "SDF Open", Load, "sdfopen")
MakeButton( var, "Var", VarSel, NULL )
MakeButton( display, "Display", Display, "display" )
MakeButton( quit, "Quit", Cmd, "quit" )
SetWidgetPos(var, NO_CARE, NULL, PLACE_RIGHT, file)
SetWidgetPos(display, NO_CARE, NULL, PLACE_RIGHT, var)
SetWidgetPos(quit, NO_CARE, NULL, PLACE_RIGHT, display)
MainLoop()